home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / ODRecord.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  790 b   |  37 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _ODRECORD_
  4. #define _ODRECORD_
  5.  
  6. #ifndef _ODDSCLST_
  7. #include "ODDesLst.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface  ODRecord;
  15.  
  16. //==============================================================================
  17. // ODRecord
  18. //==============================================================================
  19.  
  20. interface ODRecord : ODDescList
  21. {
  22.     void InitODRecord();
  23. #ifdef    __SOMIDL__
  24.     implementation
  25.     {
  26.         majorversion = 1; minorversion = 0;
  27.  
  28.           functionprefix = ODRecord;
  29.  
  30.         releaseorder:
  31.             InitODRecord;
  32.     };
  33. #endif
  34. };
  35.  
  36. #endif    //#    _ODRECORD_
  37.